home *** CD-ROM | disk | FTP | other *** search
/ SPACE 2 / SPACE - Library 2 - Volume 1.iso / program / 515 / rcs5ap1s.lzh / CONF.HEG < prev    next >
Text File  |  1991-01-10  |  4KB  |  107 lines

  1. /* example RCS compile-time configuration */
  2.  
  3.     /* $Id: conf.heg,v 1.1 90/11/01 05:03:27 eggert Exp $ */
  4.  
  5. /*
  6.  * This is an example RCS compile-time configuration.
  7.  * If you can't get conf.sh to work as described in the Makefile,
  8.  * copy this file to conf.h and edit conf.h by hand.
  9.  */
  10.  
  11. #define exitmain(n) return n /* how to exit from main() */
  12. #if !MAKEDEPEND
  13. #    include <stdio.h>
  14. #    include <sys/types.h>
  15. #    include <sys/stat.h>
  16. #    include <fcntl.h>
  17. #    include <limits.h>
  18. #    include <stdlib.h>
  19. #    include <string.h>
  20. #    include <unistd.h>
  21.     /* #include <vfork.h> does not work.  */
  22. #endif /* !MAKEDEPEND */
  23. #define has_sys_dir_h 0 /* Does #include <sys/dir.h> work?  */
  24. #define has_sys_param_h 0 /* Does #include <sys/param.h> work?  */
  25. #define has_sys_wait_h 1 /* Does #include <sys/wait.h> work?  */
  26. /* #define const */ /* The 'const' keyword works.  */
  27. /* #define volatile */ /* The 'volatile' keyword works.  */
  28. /* typedef int gid_t; */ /* Standard headers define gid_t.  */
  29. /* typedef int mode_t; */ /* Standard headers define mode_t.  */
  30. /* typedef int pid_t; */ /* Standard headers define pid_t.  */
  31. /* typedef int sig_atomic_t; */ /* Standard headers define sig_atomic_t.  */
  32. /* typedef int size_t; */ /* Standard headers define size_t.  */
  33. /* typedef long time_t; */ /* Standard headers define time_t.  */
  34. /* typedef int uid_t; */ /* Standard headers define uid_t.  */
  35. #define has_prototypes 1 /* Do function prototypes work?  */
  36. #if has_prototypes
  37. #    define P(params) params
  38. #    if !MAKEDEPEND
  39. #        include <stdarg.h>
  40. #    endif
  41. #    define vararg_start(ap,p) va_start(ap,p)
  42. #else
  43. #    define P(params) ()
  44. #    if !MAKEDEPEND
  45. #        include <varargs.h>
  46. #    endif
  47. #    define vararg_start(ap,p) va_start(ap)
  48. #endif
  49. #define has_getuid 1 /* Does getuid() work?  */
  50. #define declare_getpwuid struct passwd *getpwuid P((uid_t));
  51. #define has_rename 1 /* Does rename() work?  */
  52. #define bad_rename 0 /* Does rename(A,B) fail if B exists?  */
  53. #define VOID (void) /* 'VOID e;' discards the value of an expression 'e'.  */
  54. #define signal_type void /* type returned by signal handlers */
  55. #define sig_zaps_handler 0 /* Must a signal handler reinvoke signal()?  */
  56. #define has_seteuid 1 /* Does seteuid() obey Posix 1003.1-1990?  */
  57. #define has_sigaction 1 /* Does struct sigaction work?  */
  58. #define has_sigblock 0 /* Does sigblock() work?  */
  59. #define has_sys_siglist 0 /* Does sys_siglist[] work?  */
  60. #define exit_type void /* type returned by exit() */
  61. #define underscore_exit_type void /* type returned by _exit() */
  62. typedef size_t fread_type; /* type returned by fread() and fwrite() */
  63. typedef void *malloc_type; /* type returned by malloc() */
  64. #define free_type void /* type returned by free() */
  65. typedef size_t strlen_type; /* type returned by strlen() */
  66. #define has_getcwd 1 /* Does getcwd() work?  */
  67. /* #define has_getwd ? */ /* Does getwd() work?  */
  68. #define has_vfork 0 /* Does vfork() work?  */
  69. #define has_vfprintf 1 /* Does vfprintf() work?  */
  70. #define CO "/usr/local/bin/co" /* name of 'co' program */
  71. #define COMPAT2 0 /* Are version 2 files supported?  */
  72. #define DATEFORM "%.2d.%.2d.%.2d.%.2d.%.2d.%.2d" /* e.g. 01.01.01.01.01.01 */
  73. #define DIFF "/bin/diff" /* name of 'diff' program */
  74. #define DIFF_FLAGS , "-n" /* Make diff output suitable for RCS.  */
  75. #define DIFF_L 0 /* Does diff -L work? */
  76. #define EXECRCS execv /* variant of execv() to use on subprograms */
  77. #define MERGE "/usr/local/bin/merge" /* name of 'merge' program */
  78. #define RCSDIR "RCS/" /* subdirectory for RCS files */
  79. #define SLASH '/' /* path name separator */
  80. #define TMPDIR "/tmp/" /* default directory for temporary files */
  81. #define DIFF_PATH_HARDWIRED 1 /* Is DIFF absolute, not relative?  */
  82. #define ROOTPATH(p) ((p)[0]==SLASH)
  83. #define RCSSEP ',' /* separator for RCSSUF */
  84. #define SENDMAIL "/bin/mail" /* how to send mail */
  85. #if 1 /* These agree with <stdio.h>.  */
  86.     int fprintf P((FILE*,const char*,...));
  87.     int printf P((const char*,...));
  88. #    if has_vfprintf
  89.         int vfprintf P((FILE*,const char*,...));
  90. #    else
  91.         void _doprnt P((const char*,...));
  92. #    endif
  93. #endif
  94. char *sprintf P((char*,const char*,...));
  95. int chmod P((const char*,mode_t));
  96. int fcntl P((int,int,...));
  97. int open P((const char*,int,...));
  98. mode_t umask P((mode_t));
  99. pid_t wait P((int*));
  100. #ifndef O_CREAT
  101.     int creat P((const char*,mode_t));
  102. #endif
  103. #if has_seteuid
  104.     int setegid P((gid_t));
  105.     int seteuid P((uid_t));
  106. #endif
  107.